nav {
    background-color: #003366;
    padding: 10px;
    text-align: right;

   
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 10px; 
}
nav a:hover {
    text-decoration: underline;
    scale: 150;
}



header {
    background-color: #f2f2f2;
    padding: 20px;
    text-align: center;
}


.button:hover {
    background-color: #0056b3;
}

.about-us {
  padding: 80px 20px;
  background-color: #f9fafb;
}

.about-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.about-text h2::after {
  content: "";
  width: 60%;
  height: 4px;
  background-color: #2563eb;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.about-intro {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0;
  color: #374151;
}

.about-text p {
  line-height: 1.7;
  color: #4b5563;
  margin-bottom: 15px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 16px;
}

.about-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-btn:hover {
  background-color: #1e40af;
  transform: translateY(-3px);
}

.about-image {
  flex: 1;
  text-align: center;
  
}

.about-image img {
  max-width: 200%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}